From: Tim Deegan Date: Mon, 24 Sep 2007 12:44:29 +0000 (+0100) Subject: [HVM] Don't count "missed ticks" on one-shot timers. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~14937^2~37 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=d0d699be14e590babfd08554fbf6797a3cb53bc6;p=xen.git [HVM] Don't count "missed ticks" on one-shot timers. It's not clear what it would mean, and it leads to division by zero. Signed-off-by: Tim Deegan --- diff --git a/xen/arch/x86/hvm/vpt.c b/xen/arch/x86/hvm/vpt.c index 8213005de2..13124f1750 100644 --- a/xen/arch/x86/hvm/vpt.c +++ b/xen/arch/x86/hvm/vpt.c @@ -46,6 +46,9 @@ static void missed_ticks(struct periodic_time *pt) { s_time_t missed_ticks; + if ( unlikely(pt->one_shot) ) + return; + missed_ticks = NOW() - pt->scheduled; if ( missed_ticks <= 0 ) return; @@ -111,12 +114,18 @@ static void pt_timer_fn(void *data) pt_lock(pt); pt->pending_intr_nr++; - pt->scheduled += pt->period; - missed_ticks(pt); - - if ( !pt->one_shot ) + if ( unlikely(pt->one_shot) ) + { + pt->enabled = 0; + list_del(&pt->list); + } + else + { + pt->scheduled += pt->period; + missed_ticks(pt); set_timer(&pt->timer, pt->scheduled); + } vcpu_kick(pt->vcpu);